Knight probability in chessboard

Time: O(KxN^2); Space: O(N^2); medium

On an NxN chessboard, a knight starts at the r-th row and c-th column and attempts to make exactly K moves. The rows and columns are 0 indexed, so the top-left square is (0, 0), and the bottom-right square is (N-1, N-1).

A chess knight has 8 possible moves it can make, as illustrated below. Each move is two squares in a cardinal direction, then one square in an orthogonal direction.

Each time the knight is to move, it chooses one of eight possible moves uniformly at random (even if the piece would go off the chessboard) and moves there.

The knight continues moving until it has made exactly K moves or has moved off the chessboard. Return the probability that the knight remains on the board after it has stopped moving.

Example 1:

Input: N = 3, K = 2, r = 0, c = 0

Output: 0.0625

Explanation:

  • There are two moves (to (1,2), (2,1)) that will keep the knight on the board.

  • From each of those positions, there are also two moves that will keep the knight on the board.

  • The total probability the knight stays on the board is 0.0625.

Example 2:

Input: N = 3, K = 3, r = 0, c = 0

Output: 0.02

Explanation:

  • There are two moves (to (1,2), (2,1)) that will keep the knight on the board.

  • From each of those positions, there are also two moves that will keep the knight on the board.

  • The total probability the knight stays on the board is 0.02.

Constraints:

  • N will be between 1 and 25.

  • K will be between 0 and 100.

  • The knight always initially starts on the board.

[1]:
class Solution1(object):
    """
    Time: O(K*N^2)
    Space: O(N^2)
    """
    def knightProbability(self, N, K, r, c):
        """
        :type N: int
        :type K: int
        :type r: int
        :type c: int
        :rtype: float
        """
        directions = [
                       [ 1, 2], [ 1, -2],
                       [ 2, 1], [ 2, -1],
                       [-1, 2], [-1, -2],
                       [-2, 1], [-2, -1]
                     ]
        dp = [[[1 for _ in range(N)] for _ in range(N)] for _ in range(2)]

        for step in range(1, K+1):
            for i in range(N):
                for j in range(N):
                    dp[step%2][i][j] = 0
                    for direction in directions:
                        rr, cc = i+direction[0], j+direction[1]
                        if 0 <= cc < N and 0 <= rr < N:
                            dp[step%2][i][j] += 0.125 * dp[(step-1)%2][rr][cc]

        return dp[K%2][r][c]
[4]:
s = Solution1()

N = 3
K = 2
r = 0
c = 0
assert s.knightProbability(N, K, r, c) == 0.0625

N = 3
K = 3
r = 0
c = 0
assert s.knightProbability(N, K, r, c) == 0.015625